New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

markdown-it-ins

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

markdown-it-ins

tag for markdown-it markdown parser.

1.0.0
Source
npm
Version published
Weekly downloads
196K
-9.91%
Maintainers
1
Weekly downloads
 
Created

What is markdown-it-ins?

The markdown-it-ins package is a plugin for the markdown-it Markdown parser that adds support for the <ins> HTML tag, which is used to denote inserted text. This can be useful for indicating additions or changes in a document.

What are markdown-it-ins's main functionalities?

Insertions

This feature allows you to use the ++text++ syntax in your Markdown to denote inserted text, which will be rendered as <ins>text</ins> in HTML.

const md = require('markdown-it')();
const markdownItIns = require('markdown-it-ins');
md.use(markdownItIns);

const result = md.render('++inserted text++');
console.log(result); // Outputs: <p><ins>inserted text</ins></p>

Other packages similar to markdown-it-ins

Keywords

markdown-it-plugin

FAQs

Package last updated on 12 Mar 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts